home *** CD-ROM | disk | FTP | other *** search
- @echo on
- REM
- REM User Function from Clone Cleaner (CloneCln.Exe)
- REM
- REM Parameters %1 = Filename, %2=A | B, %3=FileSize */
- REM
- if %2. == A. goto ascii
- if %2. == B. goto binary
-
- :ascii
- echo Ascii File %1 %3 >> user.txt
-
- echo ----------------------------------------------------> temp1.txt
- echo *** Clone Cleaner Says THIS FILE HAS DUPLICATES *** > temp1.txt
- echo ---------------------------------------------------->> temp1.txt
- copy temp1.txt+%1 temp2.txt
- del %1
- copy temp2.txt %1
- del temp1.txt
- del temp2.txt
-
- goto done
-
- :binary
- echo Binary File %1 %3 >> user.txt
- goto done
-
- :done
-
-